ArcPad Map File Schema
TRUETYPEMARKERSYMBOL Element
See Also  Send comments on this topic.
ArcPad Map File Schema : TRUETYPEMARKERSYMBOL Element

Glossary Item Box

Description

Used to symbolize point features using TrueType symbols.

Diagram

TRUETYPEMARKERSYMBOL Element

Overview

TRUETYPEMARKERSYMBOL
Used to symbolize point features using TrueType symbols.
character required Restriction of xs:int
Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used.
angle optional Restriction of xs:double
Angle of rotation in degrees.
font optional xs:string
Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic.
fontcolor optional xs:string
Font color.
fontsize optional Restriction of xs:int
Font size.
fontstyle optional Restriction of xs:string
Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")

Attributes

NameTypeUseDefaultFixedDescription
characterRestriction of xs:intrequired  Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used.
angleRestriction of xs:doubleoptional0.0 Angle of rotation in degrees.
fontxs:stringoptional  Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic.
fontcolorxs:stringoptional  Font color.
fontsizeRestriction of xs:intoptional  Font size.
fontstyleRestriction of xs:stringoptionalregular Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")

Examples

Source

<xs:element name="TRUETYPEMARKERSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to symbolize point features using TrueType symbols.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="character" use="required">
      <xs:annotation>
        <xs:documentation>Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="32" />
          <xs:maxInclusive value="255" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="0" ref="angle">
      <xs:annotation>
        <xs:documentation>Angle of rotation in degrees.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute ref="font">
      <xs:annotation>
        <xs:documentation>Font name. The name is case sensitive.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute ref="fontcolor" default="0,0,0" />
    <xs:attribute ref="fontsize">
      <xs:annotation>
        <xs:documentation>Font size.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute default="regular" ref="fontstyle">
      <xs:annotation>
        <xs:documentation>Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2012 All Rights Reserved.